# x + 2y = 8 # 3x - 7y = 34 A = matrix( c(1, 2, 3, -7), 2, 2, byrow=T) b = matrix(c(8,34), 2, 1) soln = solve(A, b) print(soln)